home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-08 | 1.6 KB | 118 lines | [TEXT/CWIE] |
- //
- // Lookup.r
- //
-
- // Standard includes:
- #include "Types.r"
- #include "SysTypes.r"
-
- #include "PowerPlant.r"
-
- #include "ResourceIDs.h"
- #include "Lookup.h"
-
- resource 'STR#' (STRx_Standards, "Standards", purgeable) {
- {
- "Lookup",
- "Save File As:",
- "Can’t Undo"
- }
- };
-
- resource 'STR#' (STRx_Untitled, "untitled", purgeable) {
- {
- "untitled",
- "untitled "
- }
- };
-
- resource 'STR#' (STRx_RedoEdit, "redo edit", purgeable) {
- {
- "Can’t Redo",
- "Redo",
- "Redo Cut",
- "Redo Copy",
- "Redo Paste",
- "Redo Clear",
- "Redo Typing",
- "Redo Add",
- "Redo Change",
- "Redo Clear"
- }
- };
-
- resource 'STR#' (STRx_UndoEdit, "undo edit", purgeable) {
- {
- "Can’t Undo",
- "Undo",
- "Undo Cut",
- "Undo Copy",
- "Undo Paste",
- "Undo Clear",
- "Undo Typing",
- "Undo Add",
- "Undo Change",
- "Undo Clear"
- }
- };
-
- resource 'STR#' (STRx_RedoDrag, "redo drag", purgeable) {
- {
- "Redo Drag Copy",
- "Redo Drag Move",
- "Redo Drag Drop"
- }
- };
-
- resource 'STR#' (STRx_UndoDrag, "undo drag", purgeable) {
- {
- "Undo Drag Copy",
- "Undo Drag Move",
- "Undo Drag Drop"
- }
- };
-
- resource 'BNDL' (128, purgeable) {
- kApplicationSignature,
- 0,
- {
- 'ICN#',
- {
- 0, 128,
- 1, 129
- },
- 'FREF',
- {
- 0, 128,
- 1, 129
- }
- }
- };
-
- resource 'FREF' (128, purgeable) {
- 'APPL',
- 0,
- ""
- };
-
- resource 'FREF' (129, purgeable) {
- 'TEXT',
- 0,
- ""
- };
-
- type kApplicationSignature as 'STR ';
- resource kApplicationSignature (0) {
- "Copyright © 1995 Alastair Rankine All Rights Reserved And All That Guff."
- };
-
- resource 'vers' (1, purgeable) {
- 0x1,
- 0x0,
- development,
- 0x1,
- verAustralia,
- "1.0d1",
- "1.0d1 © 1995 Alastair Rankine"
- };
-